home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-28 | 354 b | 16 lines | [TEXT/xlsp] |
- (setf (aref *readtable* (char-int #\[))
- (cons :tmacro
- (lambda (f c &aux ex)
- (do ()
- ((eq (peek-char t f) #\]))
- (setf ex (append ex (list (read f)))))
- (read-char f)
- (cons (cons 'send ex) nil))))
-
- (setf (aref *readtable* (char-int #\]))
- (cons :tmacro
- (lambda (f c)
- (error "misplaced right bracket"))))
-
-
-